home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINFONTS / WSFONT.ZIP / CONFIRMS.FRM < prev    next >
Text File  |  1993-10-04  |  2KB  |  62 lines

  1. VERSION 2.00
  2. Begin Form ConfirmScreen 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Font Manager"
  6.    ControlBox      =   0   'False
  7.    Height          =   2655
  8.    Left            =   2250
  9.    LinkTopic       =   "Form2"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   2250
  13.    ScaleWidth      =   5835
  14.    Top             =   2265
  15.    Width           =   5955
  16.    Begin CommandButton Command1 
  17.       Cancel          =   -1  'True
  18.       Caption         =   "Skip It"
  19.       Default         =   -1  'True
  20.       Height          =   375
  21.       Index           =   1
  22.       Left            =   3480
  23.       TabIndex        =   2
  24.       Top             =   1560
  25.       Width           =   1095
  26.    End
  27.    Begin CommandButton Command1 
  28.       Caption         =   "Yes"
  29.       Height          =   375
  30.       Index           =   0
  31.       Left            =   960
  32.       TabIndex        =   1
  33.       Top             =   1560
  34.       Width           =   1095
  35.    End
  36.    Begin Label Label1 
  37.       BackStyle       =   0  'Transparent
  38.       Caption         =   "Label1"
  39.       Height          =   1335
  40.       Left            =   240
  41.       TabIndex        =   0
  42.       Top             =   120
  43.       Width           =   5175
  44.    End
  45. End
  46. Option Explicit
  47.  
  48. Sub Command1_Click (Index As Integer)
  49. Select Case Index
  50. Case 0
  51.    MoveBasic% = True
  52. Case 1
  53.    MoveBasic% = False
  54. End Select
  55. Unload Me
  56. End Sub
  57.  
  58. Sub Form_Load ()
  59. Label1 = TestFont$ + " is one of the basic fonts installed with Windows 3.1." + CRLF$ + CRLF$ & "If you remove this font, applications that rely upon it may not work properly. Do you still want to move this font to the reserve list?"
  60. End Sub
  61.  
  62.